/* ==================== SEVENTEEN PLANETS - COMPLETE STYLES ==================== */

/* ===== MODAL & CONTAINER ===== */
.seventeen-planets-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #ffebc4 0%, #ffebc4ad 100%);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 10000;
  overflow-y: auto;
  padding: 20px;
}

.seventeen-planets-modal.active {
  display: flex;
}

.seventeen-planets-container {
  background: #f5f4ed;
  border-radius: 50px;
  padding: 40px;
  max-width: 1500px;
  width: 100%;
  max-height: 95vh;
  overflow-y: auto;
  box-shadow: 0 35px 90px rgba(0, 0, 0, 0.25);
  animation: seventeenPlanetsSlideUp 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  border: 8px solid #ffc62f;
  text-align: center;
}

@keyframes seventeenPlanetsSlideUp {
  from {
    transform: translateY(100px) scale(0.8);
    opacity: 0;
  }

  to {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
}

/* ===== CLOSE BUTTON ===== */
.seventeen-planets-close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  background: linear-gradient(135deg, #ff6b6b 0%, #ee5a6f 100%);
  color: white;
  border: none;
  border-radius: 50%;
  width: 70px;
  height: 70px;
  font-size: 2.5rem;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(255, 107, 107, 0.5);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  font-weight: bold;
  border: 4px solid white;
}

.seventeen-planets-close-btn:hover {
  transform: scale(1.2) rotate(90deg);
  box-shadow: 0 15px 40px rgba(255, 107, 107, 0.7);
}

/* ===== HEADER ===== */
.seventeen-planets-header {
  text-align: center;
  margin-bottom: 35px;
  animation: seventeenPlanetsBounceIn 0.8s ease-out;
}

@keyframes seventeenPlanetsBounceIn {
  0% {
    transform: scale(0);
    opacity: 0;
  }

  50% {
    transform: scale(1.1);
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.seventeen-planets-title {
      font-size: var(--fs-16-32);

  color: #1e1e1e;
  font-weight: 900;
  margin-bottom: 15px;
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.1);
  letter-spacing: 3px;
}

.seventeen-planets-subtitle {
  font-size: clamp(1.3rem, 3vw, 2rem);
  color: #1e1e1e;
  font-weight: 700;
  margin-bottom: 1em;
}

/* ===== SCORE BAR ===== */
.seventeen-planets-score-bar {
  display: flex;
  justify-content: space-around;
  gap: 20px;
  margin-bottom: 35px;
  flex-wrap: wrap;
}

.seventeen-planets-score-item {
  background: white;
  border-radius: 30px;
  padding: 20px 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  border: 4px solid #ffc62f;
  transition: all 0.3s ease;
}

.seventeen-planets-score-item:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 15px 40px rgba(255, 198, 47, 0.4);
}

.seventeen-planets-score-item.seventeen-planets-total {
  background: linear-gradient(135deg, #ffd700 0%, #ffa500 100%);
  border-color: #ff8c00;
  animation: seventeenPlanetsPulseGlow 2s infinite;
}

@keyframes seventeenPlanetsPulseGlow {
  0%,
  100% {
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.4);
  }

  50% {
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.7);
  }
}

.seventeen-planets-score-label {
  font-size: clamp(1.1rem, 2.2vw, 1.5rem);
  color: #1e1e1e;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.seventeen-planets-score-value {
  font-size: clamp(2rem, 4vw, 3rem);
  color: #1e1e1e;
  font-weight: 900;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.seventeen-planets-total .seventeen-planets-score-value {
  color: #fff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

/* ===== NAVIGATION TABS ===== */
.seventeen-planets-nav-tabs {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 35px;
  flex-wrap: wrap;
}

.seventeen-planets-tab-btn {
  background: linear-gradient(135deg, #e8f5ff 0%, #f0e8ff 100%);
  color: #1e1e1e;
  border: 3px solid #d0d0d0;
  padding: 18px 30px;
  font-size: clamp(1rem, 2vw, 1.3rem);
  border-radius: 35px;
  cursor: pointer;
  font-weight: 800;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  min-width: 140px;
}

.seventeen-planets-tab-btn:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 10px 30px rgba(123, 104, 238, 0.3);
}

.seventeen-planets-tab-btn.active {
  background: linear-gradient(135deg, #00d9ff 0%, #00b4d8 100%);
  color: white;
  border-color: #0096c7;
  box-shadow: 0 10px 30px rgba(0, 217, 255, 0.5);
  transform: translateY(-3px) scale(1.08);
}

.seventeen-planets-tab-text {
  font-size: clamp(0.9rem, 1.8vw, 1.1rem);
  text-align: center;
}

/* ===== CONTENT SECTIONS ===== */
.seventeen-planets-content-section {
  display: none;
  animation: seventeenPlanetsFadeSlide 0.5s ease-out;
}

.seventeen-planets-content-section.active {
  display: block;
}

@keyframes seventeenPlanetsFadeSlide {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.seventeen-planets-learn-card {
  /* background: white; */
  border-radius: 40px;
  /* padding: 45px; */
  /* box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15); */
  /* border: 5px solid #ffc62f; */
}

/* ===== THEORY SECTION ===== */
.seventeen-planets-theory-content {
  max-width: 1100px;
  margin: 0 auto;
}

.seventeen-planets-section-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: #1e1e1e;
  font-weight: 900;
  margin-bottom: 15px;
  text-align: center;
}

.seventeen-planets-intro-text {
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  color: #1e1e1e;
  line-height: 1.8;
  margin: 20px 0;
  background: #ffc62f;
  padding: 20px;
  border-radius: 20px;
}

.seventeen-planets-planet-list {
  display: flex;
  flex-direction: column;
  gap: 25px;
  margin: 30px 0;
}

.seventeen-planets-planet-item {
  background: linear-gradient(135deg, #ffebc4 0%, #ffebc4ad 100%);
  border-radius: 20px;
  padding: var(--fs-12-24);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  border-left: 6px solid #ffc62f;
  transition: all 0.3s ease;
}

.seventeen-planets-planet-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
}

.seventeen-planets-planet-name {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  color: #1e1e1e;
  margin-bottom: 15px;
  font-weight: 900;
}

.seventeen-planets-planet-description {
  font-size: clamp(1.2rem, 2.4vw, 1.5rem);
  color: #1e1e1e;
  line-height: 1.6;
  margin: 0;
}

/* ===== QUIZ SECTION ===== */
.seventeen-planets-quiz-progress {
  margin-bottom: 30px;
}

.seventeen-planets-progress-bar {
  background: rgba(0, 0, 0, 0.1);
  border-radius: 20px;
  height: 25px;
  overflow: hidden;
}

.seventeen-planets-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #00b894 0%, #00cec9 100%);
  border-radius: 20px;
  transition: width 0.5s ease;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.seventeen-planets-quiz-area {
  background: linear-gradient(135deg, #f8f9ff 0%, #e8f4fd 100%);
  border-radius: 25px;
  padding: var(--fs-12-24);
  text-align: center;
}

.seventeen-planets-question-text {
  font-size: clamp(2rem, 4vw, 3rem);
  color: #1e1e1e;
  font-weight: bold;
  margin-bottom: 30px;
}

.seventeen-planets-quiz-options {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.seventeen-planets-quiz-option {
  cursor: pointer;
  transition: all 0.3s ease;
}

.seventeen-planets-quiz-option:hover {
  transform: translateY(-10px) scale(1.1);
}

.seventeen-planets-option-content {
  background: white;
  border-radius: 25px;
  padding: 0.5em 1em;
  min-width: 200px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  border: 5px solid #e0e0e0;
  transition: all 0.3s ease;
}

.seventeen-planets-quiz-option:hover .seventeen-planets-option-content {
  border-color: #ffc62f;
  box-shadow: 0 15px 40px rgba(255, 198, 47, 0.3);
}

.seventeen-planets-option-text {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  color: #1e1e1e;
}

.seventeen-planets-quiz-option.seventeen-planets-correct-answer
  .seventeen-planets-option-content {
  border-color: #4caf50;
  background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
  animation: seventeenPlanetsCorrectPulse 0.6s;
}

@keyframes seventeenPlanetsCorrectPulse {
  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.2);
  }
}

.seventeen-planets-quiz-option.seventeen-planets-wrong-answer
  .seventeen-planets-option-content {
  animation: seventeenPlanetsWrongShake 0.5s;
}

@keyframes seventeenPlanetsWrongShake {
  0%,
  100% {
    transform: translateX(0);
  }

  25% {
    transform: translateX(-15px);
  }

  75% {
    transform: translateX(15px);
  }
}

.seventeen-planets-quiz-feedback {
  text-align: center;
  min-height: 80px;
}

.seventeen-planets-feedback-correct,
.seventeen-planets-feedback-wrong {
  display: inline-block;
  padding: 20px 40px;
  border-radius: 25px;
  animation: seventeenPlanetsFeedbackPop 0.5s;
}

@keyframes seventeenPlanetsFeedbackPop {
  0% {
    transform: scale(0);
  }

  50% {
    transform: scale(1.2);
  }

  100% {
    transform: scale(1);
  }
}

.seventeen-planets-feedback-correct {
  background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
  border: 4px solid #4caf50;
}

.seventeen-planets-feedback-wrong {
  background: linear-gradient(135deg, #fff9e6 0%, #ffefba 100%);
  border: 4px solid #ffd700;
}

.seventeen-planets-feedback-text {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 900;
  color: #2e7d32;
}

.seventeen-planets-feedback-wrong .seventeen-planets-feedback-text {
  color: #ff8c00;
}

/* ===== GAME SECTION ===== */
.seventeen-planets-game-container {
  display: block;
  height: auto;
  gap: 20px;
  min-height: 500px;
}

.seventeen-planets-solar-system {
  flex: 1;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at center, #0a0a2e 0%, #000 100%);
  border-radius: 30px;
  overflow: hidden;
  border: 5px solid #ffc62f;
  height: 80vh;
  width: auto !important;
  aspect-ratio: 1 / 1;
  margin: 0 auto;
}

.seventeen-planets-sun {
  width: 80px;
  height: 80px;
  background: radial-gradient(circle, #ffd700 0%, #ff8c00 100%);
  border-radius: 50%;
  position: absolute;
  box-shadow: 0 0 60px rgba(255, 215, 0, 0.8);
  z-index: 10;
}

.seventeen-planets-orbit {
  position: absolute;
  border: 2px dashed rgba(255, 198, 47, 0.3);
  border-radius: 50%;
}
.seventeen-planets-orbit-0 {
  width: 24%;
  height: auto;
  aspect-ratio: 1 / 1;
}

.seventeen-planets-orbit-1 {
  width: 32%;
  height: auto;
  aspect-ratio: 1 / 1;
}

.seventeen-planets-orbit-2 {
  width: 40%;
  height: auto;
  aspect-ratio: 1 / 1;
}

.seventeen-planets-orbit-3 {
  width: 48%;
  height: auto;
  aspect-ratio: 1 / 1;
}

.seventeen-planets-orbit-4 {
  width: 56%;
  height: auto;
  aspect-ratio: 1 / 1;
}

.seventeen-planets-orbit-5 {
  width: 64%;
  height: auto;
  aspect-ratio: 1 / 1;
}

.seventeen-planets-orbit-6 {
  width: 72%;
  height: auto;
  aspect-ratio: 1 / 1;
}

.seventeen-planets-orbit-7 {
  width: 80%;
  height: auto;
  aspect-ratio: 1 / 1;
}

.seventeen-planets-drop-zone {
  position: absolute;
  width: 25px;
  height: auto;
  aspect-ratio: 1 / 1;
  border: 1px dashed rgba(255, 198, 47, 0.5);
  border-radius: 50%;
  background: rgba(255, 198, 47, 0.1);
  transition: all 0.3s;
  z-index: 999;
  left: 50%;
  top: 0;
  transform: translate(-50%, -50%);
}

.seventeen-planets-drop-zone.drag-over {
  background: rgba(0, 255, 0, 0.3);
  border-color: #0f0;
  transform: scale(1.1);
}

.seventeen-planets-drop-zone.filled {
  border: none;
  background: transparent;
}

.seventeen-planets-planet-in-orbit {
  position: absolute;
  width: 100%;
  height: 100%;
  animation: seventeenPlanetsOrbit linear infinite;
  transform-origin: center;
}

.seventeen-planets-planet-in-orbit .seventeen-planets-planet-icon {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
}
@keyframes seventeenPlanetsOrbit {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.seventeen-planets-sidebar {
  /* width: 250px; */
  /* background: #ffc62f; */
  border-radius: 0px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 1rem !important;
  border: 5px solid #1e1e1e;
  max-height: 100%;
  overflow-y: auto;

  display: flex;
  flex-direction: row;
  flex-direction: row;
  align-items: start;
  width: 100%;
  max-width: 100%;
  overflow-x: auto;
  padding: 0;
  border: none;
  scrollbar-width: thin;
  scrollbar-color: #de9406 transparent;
}

.seventeen-planets-game-score {
  text-align: center;
  font-size: 24px;
  font-weight: bold;
  color: #1e1e1e;
  margin-bottom: 10px;
  background: white;
  padding: 10px;
  border-radius: 15px;
}

.seventeen-planets-planet {
  width: 100%;
  padding: 12px;
  background: white;
  border: 3px solid #1e1e1e;
  border-radius: 15px;
  cursor: move;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s;
  touch-action: none;
}

.seventeen-planets-planet:hover {
  background: #f0f0f0;
  transform: translateX(-5px);
}

.seventeen-planets-planet.dragging {
  opacity: 0.5;
}

.seventeen-planets-planet.placed {
  opacity: 0.3;
  cursor: not-allowed;
  pointer-events: none;
}

.seventeen-planets-planet-icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.seventeen-planets-mercury {
  background: #8c7853;
}

.seventeen-planets-venus {
  background: #ffc649;
}

.seventeen-planets-earth {
  background: #4a90e2;
}

.seventeen-planets-mars {
  background: #e27b58;
}

.seventeen-planets-jupiter {
  background: #c88b3a;
}

.seventeen-planets-saturn {
  background: #f4d47c;
}

.seventeen-planets-uranus {
  background: #4fd0e7;
}

.seventeen-planets-neptune {
  background: #4166f5;
}

.seventeen-planets-done-btn {
  padding: 15px;
  background: #28a745;
  border: none;
  border-radius: 15px;
  color: white;
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;

  display: none;
  transition: all 0.3s;
}

.seventeen-planets-done-btn:hover {
  background: #218838;
  transform: scale(1.05);
}

.seventeen-planets-done-btn.show {
  display: block;
}

.seventeen-planets-message {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 30px 50px;
  background: rgba(0, 0, 0, 0.95);
  border: 5px solid;
  border-radius: 20px;
  font-size: 24px;
  font-weight: bold;
  z-index: 10001;
  display: none;
  animation: seventeenPlanetsFadeIn 0.3s;
}

.seventeen-planets-message.success {
  border-color: #28a745;
  color: #28a745;
}

.seventeen-planets-message.error {
  border-color: #dc3545;
  color: #dc3545;
}

.seventeen-planets-message.show {
  display: block;
}

@keyframes seventeenPlanetsFadeIn {
  from {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.8);
  }

  to {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
}

/* ===== BUTTONS ===== */
.seventeen-planets-btn {
  background: linear-gradient(135deg, #2ecc71 0%, #27ae60 50%, #16a085 100%);
  color: white;
  border: none;
  padding: 15px 40px;
  font-size: clamp(1rem, 2vw, 1.3rem);
  border-radius: 30px;
  cursor: pointer;
  font-weight: bold;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  font-family: inherit;
  margin-top: 15px;
  width: 100%;
  max-width: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-left: auto;
  margin-right: auto;
}

.seventeen-planets-btn:hover:not(:disabled) {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.seventeen-planets-btn-large {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
}

/* ===== CONFETTI ===== */
.seventeen-planets-confetti-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10002;
  display: none;
}

.seventeen-planets-confetti-container.active {
  display: block;
}

.seventeen-planets-confetti {
  position: absolute;
  width: 12px;
  height: 12px;
  animation: seventeenPlanetsConfettiFall 3s linear forwards;
  border-radius: 50%;
}

@keyframes seventeenPlanetsConfettiFall {
  to {
    transform: translateY(100vh) rotate(360deg);
    opacity: 0;
  }
}

/* ===== CUSTOM SCROLLBAR ===== */
.seventeen-planets-container::-webkit-scrollbar {
  width: 14px;
}

.seventeen-planets-container::-webkit-scrollbar-track {
  background: linear-gradient(
    135deg,
    rgba(255, 198, 47, 0.3),
    rgba(245, 244, 237, 0.3)
  );
  border-radius: 10px;
}

.seventeen-planets-container::-webkit-scrollbar-thumb {
  background: linear-gradient(135deg, #ffc62f 0%, #ff8c00 100%);
  border-radius: 10px;
  border: 2px solid white;
}

.seventeen-planets-container::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(135deg, #ff8c00 0%, #ffc62f 100%);
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
  /* start */
  .seventeen-planets-sidebar {
    height: auto !important;
    width: 100% !important;
  }

  .seventeen-planets-orbit-0 {
    width: 23.5%;
    height: auto;
    aspect-ratio: 1 / 1;
  }

  .seventeen-planets-orbit-1 {
    width: 33.2%;
    height: auto;
    aspect-ratio: 1 / 1;
  }

  .seventeen-planets-orbit-2 {
    width: 43.75%;
    height: auto;
    aspect-ratio: 1 / 1;
  }

  .seventeen-planets-orbit-3 {
    width: 53.5%;
    height: auto;
    aspect-ratio: 1 / 1;
  }

  .seventeen-planets-orbit-4 {
    width: 64.5%;
    height: auto;
    aspect-ratio: 1 / 1;
  }

  .seventeen-planets-orbit-5 {
    width: 73.5%;
    height: auto;
    aspect-ratio: 1 / 1;
  }

  .seventeen-planets-orbit-6 {
    width: 83.5%;
    height: auto;
    aspect-ratio: 1 / 1;
  }

  .seventeen-planets-orbit-7 {
    width: 91.2%;
    height: auto;
    aspect-ratio: 1 / 1;
  }

  /* end */
  .seventeen-planets-solar-system {
    /* height: 50vh; */
    /* min-height: 50vh; */
    min-height: 0;
    max-width: 100%;
    height: auto;
  }

  .seventeen-planets-game-container {
    flex-direction: column;
    height: auto;
  }

  .seventeen-planets-sidebar {
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
  }

  .seventeen-planets-planet {
    flex: 1;
    /* min-width: calc(50% - 10px); */
  }
  .seventeen-planets-solar-system {
    /* height: 50vh; */
    /* min-height: 85vh; */
  }
}

@media (max-width: 768px) {
  .seventeen-planets-container {
    padding: 30px;
  }

  .seventeen-planets-solar-system {
    /* height: 50vh; */
    /* min-height: 75vh; */
  }

  .seventeen-planets-sun {
    width: 50px;
    height: 50px;
  }
  /* 
  .seventeen-planets-orbit-1 {
    width: 80px;
    height: 80px;
  }

  .seventeen-planets-orbit-2 {
    width: 120px;
    height: 120px;
  }

  .seventeen-planets-orbit-3 {
    width: 160px;
    height: 160px;
  }

  .seventeen-planets-orbit-4 {
    width: 200px;
    height: 200px;
  }

  .seventeen-planets-orbit-5 {
    width: 250px;
    height: 250px;
  }

  .seventeen-planets-orbit-6 {
    width: 300px;
    height: 300px;
  }

  .seventeen-planets-orbit-7 {
    width: 350px;
    height: 350px;
  }

  .seventeen-planets-orbit-8 {
    width: 400px;
    height: 400px;
  } */

  /* .seventeen-planets-drop-zone {
    width: 35px;
    height: 35px;
  } */

  .seventeen-planets-planet-icon {
    width: 25px;
    height: 25px;
  }

  .seventeen-planets-close-btn {
    width: 30px;
    height: 30px;
  }
}

@media (max-width: 576px) {
  .seventeen-planets-drop-zone{
    width: 18px;
    border-width: 1px;
  }
  .seventeen-planets-solar-system {
    border: none;
  }

  .seventeen-planets-sidebar {
    height: auto !important;
    width: 100% !important;
  }

  .seventeen-planets-orbit-0 {
    width: 26%;
    height: auto;
    aspect-ratio: 1 / 1;
  }

  .seventeen-planets-orbit-1 {
    width: 36%;
    height: auto;
    aspect-ratio: 1 / 1;
  }

  .seventeen-planets-orbit-2 {
    width: 46%;
    height: auto;
    aspect-ratio: 1 / 1;
  }

  .seventeen-planets-orbit-3 {
    width: 56%;
    height: auto;
    aspect-ratio: 1 / 1;
  }

  .seventeen-planets-orbit-4 {
    width: 66%;
    height: auto;
    aspect-ratio: 1 / 1;
  }

  .seventeen-planets-orbit-5 {
    width: 75%;
    height: auto;
    aspect-ratio: 1 / 1;
  }

  .seventeen-planets-orbit-6 {
    width: 86%;
    height: auto;
    aspect-ratio: 1 / 1;
  }

  .seventeen-planets-orbit-7 {
    width: 96%;
    height: auto;
    aspect-ratio: 1 / 1;
  }
}

@media (max-width: 480px) {
  .seventeen-planets-planet-icon {
    width: 15px;
    height: 15px;
  }
  .seventeen-planets-sun {
    width: 25px;
    height: 25px;
  }
  .seventeen-planets-drop-zone {
    border: 2px dashed rgb(255 198 47 / 18%);
    width: 15px;
  }

  .seventeen-planets-planet-icon {
    width: 15px;
    height: 15px;
  }
  .seventeen-planets-container {
    padding: 50px 0;
    border-radius: 35px;
  }

  .seventeen-planets-nav-tabs {
    flex-direction: column;
    align-items: stretch;
  }

  .seventeen-planets-tab-btn {
    width: 90%;
    min-width: auto;
    margin: 0 auto;
  }
}

/* ===== ACCESSIBILITY ===== */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
